Fixes breadcrumb wrapping and overlapping the select all box#4976
Conversation
|
|
||
| .text-truncate{ | ||
| overflow: hidden; | ||
| width:100px; |
There was a problem hiding this comment.
I think this would not only partially resolve the issue but would also introduce responsiveness concerns. Besides, if we really need to override the width of the component, it makes more sense do so within a wrapper instead, I think (this styling has been defined within the component itself). Better still, we can make the change in the Breadcrumbs component where I suspect the issues resides. It appears to me that the finickiness is due to the way we are handling the overflow calculations, so it will require some digging around to establish what is causing the issue.
akolson
left a comment
There was a problem hiding this comment.
Hi @AllanOXDi. Left a few comments
ba1ec40 to
34cd432
Compare
34cd432 to
ba1ec40
Compare
ba1ec40 to
4edb95e
Compare
4edb95e to
2b9ac06
Compare
There was a problem hiding this comment.
Not too sure we want to commit this deleted file?
There was a problem hiding this comment.
| this.$nextTick(() => { | ||
| if (this.$refs.breadcrumb) { | ||
| for (var i = this.$refs.breadcrumb.length - 1; i >= 0; --i) { | ||
| totalWidth += this.$refs.breadcrumb[i].$el.offsetWidth + 40; |
There was a problem hiding this comment.
Unfortunately, this still doesn't fix the issue. If anything, it would be a partial fix--in some screen sizes it works on others it doesn't
e77f2c3 to
f83d1b7
Compare
|
Hi @AllanOXDi Could you please retarget this to |
f83d1b7 to
29a0ca2
Compare
44fec86 to
410c928
Compare
akolson
left a comment
There was a problem hiding this comment.
Changes look correct to me. I have also done some manual QA (for some time now) on the fix but haven't been able to replicate the issue again. (More manual QA required). Thanks @AllanOXDi for your persistence on this issue!
Summary
This PR fixes the overlapping of the breadcrumbs
Closes #4829
Before
Screen.Recording.2025-03-27.at.21.43.45.mov
After
Screen.Recording.2025-03-27.at.21.42.04.mov
References
#4829